body{
    width: 100%; 
    height: 100%; 
}
.login1{
    min-height: 100vh;
    }

.login1-content{
    display: grid;
    min-height: 98vh;
    grid-template-columns: 50% 50%;
}

.login1-column-left{
    box-sizing: border-box;
    color: rgb(224, 224, 224);
    background-color: #08083E;
    height: 100%;
    margin: 1vh 1vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.error{
    color: red;
    margin: auto;
    margin-top: 10px;
}
.back{
    padding-top: 25px;
    height: 25px;
    padding-left: 15px;
    text-decoration: none;
    margin-right: auto;
}

.back a{
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    height: 25px;
    color: rgb(224, 224, 224);
}

#backbutton{
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    margin-right: 7px;
}

.back p{
    font-size: 18px;
}

#loginlogo{
    margin: auto;
    width: 450px;
    height: auto;
    text-align: center;
}

.info{
    margin: 35px 50px;
    border-radius: 5px;
    border: solid 2px whitesmoke;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.info h3 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.info p {
    max-width: 450px;
    margin: 5px;
    margin-bottom: 10px;
}

.login1-column-right{
    display: flex;
    height: 100%;
    margin: 1vh 1vh;
    justify-content: center;
}

.login1-form{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
}
  
  #login label {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
    margin-top: 20px;
  }


  #login input[type="email"],
  #login input[type="password"],
  #login input[type="text"] {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    padding-left: 15px;
    font-size: 15px;
    width: calc(100% - 26.33px);
  }

  form i {
    cursor: pointer;
    position: absolute;
    right: 2%;
    top: 1px;
    font-size: 22px;
}
  
  #login input[type="submit"] {
    background-color: #f56f46;
    color: white;
    font-size: 20px;
    border: 1px solid #f56f46;
    border-radius: 10px;
    margin-top: 20px;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 200;
  }
  
  #login input[type="submit"]:hover {
    background-color: #f85d2f;
  }
  
  #login a {
    color: #f56f46;
    margin-left: auto;
    margin-top: 5px;
  }

  .register{
    margin-top: 5px;
    text-align: center;
  }

  .register a{
    color: #f56f46;
  }
  .login1-column-info{
    display: none;
  }
  
  @media screen and (max-width: 950px) {
    .login1{
        background-color: #08083E;
    }

    .login1-form{
        max-width: 420px;
        width: 90%;
    }

    #loginlogo{
        margin-top: 0px;
        width: 250px;
        padding: 0px;
    }

    .login1-content{
        height: 100%;
        color: rgb(224, 224, 224);
        grid-template-columns: none;
        grid-template-rows: 150px;
    }
    h1{
        font-size: 25px;
        margin-bottom: 0px;
    }

    h2{
        font-size: 20px;
        margin-bottom: 0px;
        margin-top: 15px;
    }

    .login1-column-left{
        margin: 0px;
        width: 100%;
    }

    .back{
        padding-top: 23px;
        height: 20px;
        padding-left: 7px;   
    }
    
    .back a{
        height: 20px;
        color: rgb(224, 224, 224);
    }
    
    #backbutton{
        width: 22px;
        height: 22px;
        margin-right: 5px;
    }

    .back p{
        font-size: 18px;
    }


    .login1-column-right{
        display: block;
        height: auto;
        margin: 0px;
        color: rgb(224, 224, 224);
    }

    #login label {
        font-size: 1em;
        margin-top: 25px;
      }

    #login input[type="submit"]{
        margin-top: 35px;
        margin-bottom: 10px;
    }

    form i {
        right: 5%;
        color: black;
    }

    #login a {
        margin-top: 10px;
      }

    .info{
        display: none;
        bottom: 0px;
        margin: auto 50px 50px 50px;
    }
    .info h3{
        font-size: 20px;
        margin-bottom: 5px;
    }
    .info p{
        font-size: 16px;
        max-width: 500px;
    }
    .login1-column-info{
        display: flex;
        max-width: 420px;
        width: 90%;
        margin: auto;
      }
  }

  @media screen and (max-width: 950px) and (max-height: 750px) {
    .login1-content{
        grid-template-rows: 90px;
    }

    h1{
        margin-top: -10px;
    }

    #loginlogo{
        margin-top: -30px;
        width: 100px;
    }

    .back{
        padding-top: 23px;
        height: 20px;
        padding-left: 7px;   
    }
    
    .back a{
        height: 20px;
        color: rgb(224, 224, 224);
    }
    
    #backbutton{
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .back p{
        font-size: 16px;
    }

    #login label {
        margin-top: 20px;
    }

    #login a{
        margin-top: 2px;
    }
    .info h3 {
        margin-top: 5px;
    }

    .info p {
        margin-bottom: 5px;
    }
    .register{
        margin-top: 0px;
    }
  }

  @media screen and (max-width: 550px) {

    .login1-content{
        grid-template-rows: 90px;
    }

    h1{
        font-size: 23px;
        margin-bottom: 0px;
        margin-top: 0px;
    }

    h2{
        font-size: 18px;
        margin-bottom: 0px;
        margin-top: 5px;
    }

    #loginlogo{
        margin-top: -39px;
        width: 100px;
    }

    .login1-column-left{
        margin: 0px;
        width: 100%;
        min-height: calc(100vh - 20px);
    }

    .back{
        padding-top: 23px;
        height: 20px;
        padding-left: 7px;   
    }
    
    .back a{
        height: 20px;
        color: rgb(224, 224, 224);
    }
    
    #backbutton{
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .back p{
        font-size: 16px;
    }

    #login {
        max-width: auto;
    }

    #login label {
        font-size: 1em;
      }

    #login input[type="submit"]{
        margin-top: 15px;
    }

    form i {
        right: 5%;
        color: black;
    }

    #login a {
        margin-top: 5px;
      }

    .info h3{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .info p{
        font-size: 14px;
        max-width: 420px;
    }
    .error{
        margin-top: 5px;
        margin-bottom: -10px;
    }
    .login1-column-info{
        position: absolute;
        bottom: 15px;
        left: 0px;
        right: 0px;
      }
  }

  @media screen and (max-height: 600px) {

    .info{
        display: none;
    }
}
